curl --request POST \
--url https://api.sophra.org/api/nous/ab-testing/results \
--header 'Content-Type: application/json' \
--data '{
"testId": "{{testId}}",
"variantId": "control",
"metrics": {
"click_through_rate": 0.15,
"time_on_page": 45.2,
"conversion_rate": 0.08,
"bounce_rate": 0.25
},
"sessionId": "sess_123456",
"metadata": {
"userAgent": "Mozilla/5.0",
"deviceType": "desktop",
"region": "US-West",
"timestamp": "2024-03-20T10:30:00Z"
}
}'
"<any>"
curl --request POST \
--url https://api.sophra.org/api/nous/ab-testing/results \
--header 'Content-Type: application/json' \
--data '{
"testId": "{{testId}}",
"variantId": "control",
"metrics": {
"click_through_rate": 0.15,
"time_on_page": 45.2,
"conversion_rate": 0.08,
"bounce_rate": 0.25
},
"sessionId": "sess_123456",
"metadata": {
"userAgent": "Mozilla/5.0",
"deviceType": "desktop",
"region": "US-West",
"timestamp": "2024-03-20T10:30:00Z"
}
}'
"<any>"
Successful response
The response is of type any
.